@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
 
/* ============================================
   QRFA WEBSITE - PROFESSIONAL STYLING
   ============================================ */
 
:root {
    --primary-color:#ed7d31;
    --secondary-color:#02ae02;
    --dark-color:#454b5d;
    --white:#ffffff;
    --text-dark:#333333;
    --transition:all 0.3s ease;
}
 
 
/* GLOBAL */
 
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}
 
html {
    scroll-behavior:smooth;
}
 
body {
 
    font-family:'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 
    color:var(--text-dark);
 
    line-height:1.6;
 
    background:white;
}
 
p {
    font-family:'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
 
/* CONTAINER */
 
.container {
 
    max-width:1200px;
 
    margin:auto;
 
    padding:0 20px;
}
 
 
/* ============================================
   NAVBAR
   ============================================ */
 
.navbar {
 
    position:fixed;
 
    top:0;
 
    width:100%;
 
    background:#000618;
 
    z-index:1000;
 
    padding:15px 0;
 
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
}
 
 
.nav-container {
 
    width:90%;
 
    max-width:1200px;
 
    margin:auto;
 
    display:flex;
 
    align-items:center;
 
    justify-content:space-between;
}
 
 
.logo {
 
    text-decoration:none;
     margin-left: -20px; /* 👈 adjust this value */
 
}
 
 
.logo-text {
 
    font-size:32px;
 
    font-weight:700;
 
    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
 
    
 
    -webkit-text-fill-color:transparent;
}
 
 
.nav-menu {
 
    display:flex;
 
    list-style:none;
 
    gap:50px;
}
 
 
.nav-menu li a {
 
    color:white;
 
    text-decoration:none;
 
    font-size:17px;
 
    font-weight:500;
 
    transition:var(--transition);
}
 
 
.nav-menu li a:hover {
 
    color:var(--primary-color);
}
 
 
.menu-toggle {
 
    display:none;
 
    background:none;
 
    border:none;
 
    color:white;
 
    font-size:28px;
 
    cursor:pointer;
}
 
 
 
/* ============================================
   HERO SECTION
   ============================================ */
 
 
.hero {
 
    position:relative;
 
    height:650px;
 
    display:flex;
 
    align-items:center;
 
    background:
    url('cpr-first-aid.webp')
    no-repeat center right / cover;
 
    color:white;
 
    overflow:hidden;
}
 
 
.hero::before {
 
    content:"";
 
    position:absolute;
 
    inset:0;
 
    background:rgba(0, 0, 2, 0.85);
 
    z-index:1;
}
 
 
.hero-content {
 
    position:relative;
 
    z-index:2;
 
    max-width:750px;
 
    margin-left:11%;
 
    text-align:left;
 
    animation:fadeUp 1.2s ease;
}
 
 
 
.hero h1 {
 
    font-size:clamp(2.5rem,4vw,3.8rem);
 
    line-height:1.2;
 
    margin-bottom:25px;
 
    white-space:nowrap;
 
    font-weight:600;
}
 
 
.hero h1 span {
 
    color:var(--primary-color);
}
 
 
 
.hero p {
 
    font-size:clamp(1rem,1.3vw,1.25rem);
 
    line-height:1.7;
 
    margin-bottom:35px;
 
    white-space:nowrap;
 
    color:#d66a1f;
}
 
 
.hero-buttons {
 
    display:flex;
 
    gap:15px;
}
 
 
/* ============================================
   BUTTONS
   ============================================ */
 
 
.btn {
 
    display:inline-flex;
 
    align-items:center;
 
    justify-content:center;
 
    padding:10px 35px;
 
    border-radius:10px;
 
    text-decoration:none;
 
    font-weight:600;
 
    transition:0.3s ease;
 
    cursor:pointer;
}
 
 
 
.btn-primary {
 
    background:#fffefe;
 
    color:#02ae02;
 
    box-shadow:
    0 8px 20px rgba(237,125,49,0.35);
}
 
 
.btn-primary:hover {
 
    transform:translateY(-3px);
}
 
 
 
.btn-secondary {
 
    background:transparent;
 
    color:white;
 
    border:2px solid white;
}
 
 
.btn-secondary:hover {
 
    background:var(--secondary-color);
 
    transform:translateY(-3px);
}
 
 
 
.btn:active {
 
    transform:scale(.96);
}
 
 
 
/* ============================================
   ANIMATION
   ============================================ */
 
 
@keyframes fadeUp {
 
    from {
 
        opacity:0;
 
        transform:translateY(40px);
 
    }
 
    to {
 
        opacity:1;
 
        transform:translateY(0);
 
    }
 
}
 
 
 
/* ============================================
   MOBILE VERSION
   ============================================ */
 
 
@media(max-width:768px){
 
 
    /* NAVBAR */
 
    .menu-toggle {
 
        display:block;
    }
 
 
    .nav-menu {
 
        position:absolute;
 
        top:70px;
 
        left:0;
 
        width:100%;
 
        background:#000;
 
        flex-direction:column;
 
        align-items:center;
 
        gap:25px;
 
        padding:30px 0;
 
        transform:translateY(-150%);
 
        transition:.3s ease;
    }
 
 
    .nav-menu.active {
 
        transform:translateY(0);
    }
 
 
 
    .nav-menu li a {
 
        font-size:20px;
    }
 
 
 
    /* FULL SCREEN HERO */
 
 
    .hero {
 
        height: 85vh;
 
        min-height:650px;
 
        background-position:center;
 
        justify-content:center;
 
    }
 
 
 
    .hero-content {
 
        margin:0;
 
        width:100%;
 
        padding:0 25px;
 
        text-align:center;
 
    }
 
 
 
    .hero h1 {
 
        font-size:2.2rem;
 
        line-height:1.25;
 
        white-space:normal;
 
        margin-bottom:20px;
 
    }
 
 
 
    .hero p {
 
        font-size:1rem;
 
        line-height:1.6;
 
        white-space:normal;
 
        margin-bottom:30px;
 
        color:#ed7d31;
 
    }
 
 
 
    .hero-buttons {
 
        flex-direction:column;
 
        align-items:center;
 
        gap:15px;
 
    }
 
 
 
    .btn {
 
        width:100%;
 
        max-width:300px;
 
        padding:12px 25px;
 
    }
 
 
}
 
 
 
/* SMALL PHONES */
 
 
@media(max-width:400px){
 
 
    .logo-text {
 
        font-size:26px;
 
    }
 
 
 
    .hero {
 
        min-height:600px;
 
    }
 
 
 
    .hero h1 {
 
        font-size:1.8rem;
 
    }
 
 
 
    .hero p {
 
        font-size:.95rem;
 
    }
 
 
 
    .btn {
 
        max-width:260px;
 
    }
 
}
 
.logo {
    display:flex;
    align-items:center;
    gap:30px;
    text-decoration:none;
    color:white;
    font-weight:600;
    
}
 
.logo img {
  
    width:auto;
    object-fit:contain;
    display:block;
    height:45px;          /* keep same base size */
    transform:scale(1.7); /* increase visual size */
    transform-origin:left center;
}
@media(max-width:768px){
    .logo img {
        height:38px;
    }
}
 
/* ============================================
   ABOUT SECTION
   ============================================ */
 
.about {
    background:#000618;
    height:900px;
    display:flex;
    align-items:center;
}
 
.about-container {
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}
 
/* IMAGE LEFT */
.about-image {
    flex:1;
}
 
.about-image img {
    width:100%;
    height:500px;
    width: 500px;
    object-fit:cover;
    border: 8px solid var(--primary-color);
 
   
}
 
/* CONTENT RIGHT */
.about-content {
    flex:1;
}
 
.about-content h2 {
    font-size:2.5rem;
    margin-bottom:20px;
    color:#02ae02;
}
 
.about-content p {
     font-size: 18px;
    line-height:1.8;
    margin-bottom:20px;
    color: #eaeaea;
}
 
@media(max-width:768px){
 
    .about {
        height:auto;
        padding:80px 0;
    }
 
    .about-container {
        flex-direction:column;
        text-align:center;
        gap:30px;
    }
 
    .about-image img {
        height:300px;
        width: 300px;
    }
 
}
 
/* ================= OUR VISION ================= */
 
.vision-section{
    width:100%;
    margin:0;
    padding:0;
    background:#fff;
}
 
.vision-container{
    width:100%;
    display:flex;
    align-items:stretch;
    min-height: 450px; /* Change this value to make the section shorter */
}
 
/* Left Side */
 
.vision-text{
    width:35%;
    background:#2b2d3a;
    color:#fff;
 
    display:flex;
    flex-direction:column;
    justify-content:center;
 
    padding:40px 60px;
}
 
.vision-text h2{
    font-size:2.5rem;
    color:#F28C28;
    font-weight:600;
    margin-bottom:20px;
}
 
.vision-text p{
     font-size: 18px;
    line-height:1.8;
    max-width:380px;
}
 
/* Right Side */
 
.vision-image{
    width:65%;
}
 
.vision-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
 
/* ================= TABLET ================= */
 
@media (max-width:992px){
 
    .vision-container{
        flex-direction:column;
        height:auto;
    }
 
    .vision-text,
    .vision-image{
        width:100%;
    }
 
    .vision-text{
        padding:40px 30px;
    }
 
    .vision-image img{
        height:300px;
    }
}
 
/* ================= MOBILE ================= */
 
@media (max-width:576px){
 
    .vision-container{
        height:auto;
    }
 
    .vision-text{
        padding:30px 20px;
    }
 
    .vision-text h2{
        font-size:2rem;
    }
 
    .vision-text p{
        font-size: 18px;
        line-height:1.7;
    }
 
    .vision-image img{
        height:220px;
    }
}
 
/* =========================
   MISSION SECTION
========================= */
 
.mission-section {
    padding: 80px 5%;
    background: #eaeaea;
}
 
.mission-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
 
/* =========================
   LEFT SIDE (IMAGES)
========================= */
 
.mission-images {
    position: relative;
    width: 50%;
    max-width: 500px;
    padding-left: 30px; /* space for orange bar */
}
 
/* ORANGE BAR */
.accent-bar {
    position: absolute;
    left: 0;
    top: -1px;
    width: 22px;
    height: calc(100% );
    background: #ed7d31;
}
 
/* MAIN IMAGE */
.main-img {
    width: 100%;
    display: block;
    object-fit: contain;
    background: #eaeaea;
    border: 6px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
 
/* SMALL IMAGE (DESKTOP — UNCHANGED except FIX) */
.small-img {
    position: absolute;
    bottom: -20px; /* reduced offset to remove gap */
    right: -10px;
    width: 70%;
    border: 6px solid #eaeaea;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* =========================
   RIGHT SIDE (TEXT)
========================= */
 
.mission-text {
    width: 50%;
}
 
.mission-text h2 {
    color: #02ae02;
    font-size: 36px;
    margin-bottom: 20px;
}
 
.mission-text p {
    color: #333;
     font-size: 18px;
    line-height: 1.7;
}
 
/* =========================
   MOBILE (ONLY FIXED PART)
========================= */
 
@media (max-width: 768px) {
 
   .mission-section {
    position: relative;
    padding: 80px 5%;
    margin-bottom: 0;   /* important */
    overflow: visible;
}
 
    .mission-container {
        flex-direction: column;
        gap: 30px;
       
        
    }
 
    .mission-images,
    .mission-text {
        width: 100%;
        max-width: 100%;
    }
 
    .mission-images {
        position: relative;
        padding-left: 20px;
    }
 
    /* keep bar but cleaner */
    .accent-bar {
        left: 0;
        top: 0;                 /* 🔥 align with main image */
        width: 14px;            /* slightly slimmer for phone */
        height: 100%;           /* match image height exactly */
    }
 
    /* KEEP SAME LAYERING */
   .small-img {
    position: absolute;
    bottom: 0;   /* was negative before */
    right: 0;
}
 
    /* TEXT */
    .mission-text {
        text-align: center;
    }
 
    .mission-text h2 {
        font-size: 26px;
    }
 
    .mission-text p {
         font-size: 18px;
    }
}
 
.svc-carousel {
  width: 100%;
  padding: 60px 5%;
  background:#000618;
  position: relative;
}
 
.svc-section {
  background: #000618;
  padding: 120px 0;
  margin-top: 0; /* removed gap */
}
 
.svc-card {
  position: relative;
  width: 100%;
  height: 280px;   /* was 240px — extra room for the longer descriptions */
  overflow: hidden;
  border-radius: 8px;
}
 
.svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
 
/* overlay */
.svc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 30px;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
  transition: 0.3s ease;
}
 
.swiper-slide-active .svc-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
 
/* accent */
.svc-accent {
  width: 14px;
  height: 70%;
  background: #ed7d31;
  margin-right: 15px;
}
 
/* text */
.svc-text {
  color: white;
  z-index: 10;
  width: 100%;
}
 
.svc-text h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  opacity: 0.8; /* Slightly faded on non-active slides */
  transition: opacity 0.4s ease;
}
 
.svc-text p {
   font-size: 18px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
 
/* ONLY ACTIVE */
.swiper-slide-active .svc-text h3 {
  opacity: 1;
}
 
.swiper-slide-active .svc-text p {
  opacity: 1;
  max-height: 160px;   /* was 100px — not enough for the longer service descriptions */
  margin-top: 5px;
}
 
/* side cards */
.swiper-slide {
  opacity: 0.4;
  transform: scale(0.8);
  transition: 0.4s ease;
  margin-bottom: 20PX;
}
 
.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  cursor: pointer;
}
 
.swiper-slide-active:hover .svc-card img {
  transform: scale(1.1);
  transition: transform 0.6s ease;
}
 
.swiper-slide-active:hover .svc-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}
 
/* Navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  color: #ed7d31;
  width: 50px;
  height: 50px;
  background: rgba(237, 125, 49, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
 
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(237, 125, 49, 0.3);
}
 
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 24px;
}
 
.svc-header {
  color: white;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
 
/* OUR SERVICES */
.svc-title {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
 
/* green underline */
.svc-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #00c853;
}
 
/* TRAININGS ROW */
.svc-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  margin-top: 20px;
}
 
/* small green line */
.svc-line {
  width: 20px;
  height: 3px;
  background: #00c853;
}
 
/* trainings text */
.svc-sub h3 {
  font-size: 20px;
  margin: 0;
}
 
/* description */
.svc-desc {
  font-size: 14px;
  color: #ccc;
}
 
.svc-desc span {
  color: #00c853;
  font-weight: 600;
}
 
/* BANNER SECTION */
.banner {
    position: relative;
    width: 100vw;              /* full screen width */
    margin-left: calc(-50vw + 50%); /* break out of container */
    height: 600px;
 
    background: url('slidecard/banner.jpeg') no-repeat center center/cover;
 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
 
    text-align: center;
    color: white;
}
 
/* OVERLAY */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* slightly darker */
}
 
/* CONTENT */
.banner-content {
    position: relative;
    max-width: 1100px;  /* makes text area wider */
    width: 100%;
    padding: 0 20px;
}
 
/* TEXT */
.banner h2 {
    font-size: 2.6rem;   /* bigger text */
    font-weight: 700;
    line-height: 1.3;
}
 
/* MOBILE */
@media (max-width: 768px) {
    .banner {
        height: 260px;
    }
 
    .banner h2 {
        font-size: 1.5rem;
    }
}
 
.banner h2 span.orange {
    color: #ed7d31;
}
 
.banner h2 span.green {
    color: #02ae02;
}
 
/* ============================================
   INFO SECTION (REPLACES ABOUT STYLE)
   ============================================ */
 
.info-section {
    background:#000618;
    padding:100px 0;
    display:flex;
    align-items:center;
}
 
.info-container {
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}
 
/* TEXT LEFT */
.info-text {
    flex:1;
}
 
.info-text h2 {
    font-size:1.3rem;
    margin-bottom:10px;
    color:var(--secondary-color);
}
 
.info-text p {
     font-size: 18px;
    line-height:1.8;
    margin-bottom:20px;
    color:#eaeaea;
}
 
 
 
.info-btn:hover {
    background:var(--secondary-color);
}
 
/* IMAGE RIGHT */
.info-image {
    flex:1;
}
 
.info-image img {
    width:100%;
    height:450px;
    object-fit:cover;
    border: 8px solid var(--primary-color);
    
}
 
/* MOBILE */
@media(max-width:768px){
 
    .info-container {
        flex-direction:column;
        text-align:center;
        gap:30px;
    }
 
    .info-image img {
        height:300px;
    }
}
 
/* SECTION BASE */
.rescue-block {
    background: #000618; /* dark navy */
   
     padding: 1px 5% 80px; 
}
 
/* CONTAINER */
.rescue-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}
 
/* IMAGE SIDE */
.rescue-media {
    position: relative;
    flex: 1;
}
 
.rescue-media img {
    width: 100%;
    height: auto;
    display: block;
}
 
/* ORANGE ACCENT BAR */
.rescue-accent {
   
    position: absolute;
    left: 40px;          /* now inside the image */
    top: 5%;             /* spacing from top */
    height: 90%;         /* long line (almost full height) */
    width: 20px;         /* slightly thicker */
    background: #ed7d31;
}
 
/* TEXT SIDE */
.rescue-text {
    flex: 1;
    color: #fff;
}
 
 
.rescue-text p span {
    color: #02ae02; /* green highlight */
}
 
.rescue-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #cfd6dd;
    max-width: 450px;
}
 
/* =========================
   RESPONSIVE (PHONE)
   ========================= */
@media (max-width: 768px) {
 
    .rescue-wrap {
        flex-direction: column;
        gap: 30px;
    }
 
    .rescue-accent {
        left: 10px;
        top: 20px;
        height: 90px;
    }
 
    .rescue-text {
        text-align: center;
    }
 
    .rescue-text p {
        max-width: 100%;
        
    }
}
 
.rescue-media::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 
    background: rgba(0, 0, 0, 0.4); /* adjust darkness here */
    pointer-events: none;
}
 
/* FOOTER BASE */
.site-footer {
    background: #04121f;
    color: #fff;
    padding: 70px 5% 20px;
}
 
/* LAYOUT */
.footer-wrap {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
}
 
/* FORM SIDE */
.footer-form {
    flex: 1;
}
 
.footer-form h2 {
    margin-bottom: 20px;
}
 
/* INPUTS */
.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    outline: none;
    background: #0d2a45;
    color: #fff;
    border-radius: 4px;
}
 
.footer-form textarea {
    resize: none;
}
 
/* BUTTON */
.footer-form button {
    background: #ed7d31;
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}
 
.footer-form button:hover {
    background: #cf6a28;
}
 
/* INFO SIDE */
.footer-info {
    flex: 1;
}
 
.footer-info h2 {
    margin-bottom: 15px;
}
 
.footer-info p {
    color: #cfd6dd;
    font-size: 14px;
    margin-bottom: 15px;
}
 
/* DETAILS */
.footer-details p {
    margin-bottom: 8px;
}
 
/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #0d2a45;
    padding-top: 15px;
    font-size: 13px;
    color: #aaa;
}
 
/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {
 
    .footer-wrap {
        flex-direction: column;
        gap: 40px;
    }
 
}
 
.footer-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    outline: none;
    background: #0d2a45;
    color: #fff;
    border-radius: 4px;
    appearance: none; /* removes default style */
    cursor: pointer;
}
.next-section {
    margin-top: 0;
    padding-top: 60px;
}
 
/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
 
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
 
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
 
/* ============================================
   WHY TRUST US
   ============================================ */
 
.trust-zone {
    background: #f8f9fa;
    padding: 70px 5%;
}
 
.trust-container {
    max-width: 1100px;
    margin: 0 auto;
}
 
.trust-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-direction: row-reverse; /* text stays left, cards stay right */
}
 
/* TEXT SIDE */
.trust-header {
    flex: 1;
    text-align: left;
}
 
.trust-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
}
 
.trust-header p {
    font-size: 15px;
    color: #666;
    max-width: 380px;
    line-height: 1.6;
    margin-top: 12px;
}
 
/* CARDS SIDE */
.trust-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
 
.trust-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    position: relative;
    text-align: left;
    padding: 20px;
    transition: var(--transition);
}
 
.trust-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 3px;
}
 
.trust-icon {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
}
 
.trust-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}
 
.trust-card p {
     font-size: 16px;
    color: #666;
    line-height: 1.5;
}
 
.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.09);
    cursor: pointer;
}
 
/* =========================
   RESPONSIVE
   ========================= */
 
@media (max-width: 1000px) {
    .trust-layout {
        flex-direction: column;
        gap: 30px;
    }
 
    .trust-header {
        text-align: center;
        order: -1;
    }
 
    .trust-header p {
        margin: 12px auto 0;
         font-size: 18px;
    }
 
    .trust-grid {
        order: 1;
    }
}
 
@media (max-width: 600px) {
    .trust-zone {
        padding: 50px 15px;
    }
 
    .trust-header h2 {
        font-size: 26px;
    }
 
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
 
    .trust-card {
        padding: 16px;
    }
}
 
.fb-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;   /* 👉 now on the right */
 
    width: 50px;
    height: 50px;
    background: #1877f2;
    color: #fff;
 
    display: flex;
    align-items: center;
    justify-content: center;
 
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
 
    transition: 0.3s;
}
 
.fb-fixed:hover {
    background: #0d5ed7;
    transform: scale(1.1);
}
 
@media (max-width: 768px) {

    .svc-carousel {
        padding: 40px 5%;
    }

    .svc-card {
        height: 340px;        /* taller card so wrapped text has room */
    }

    .svc-overlay {
        align-items: center;   /* was flex-start — keeps text centered in the slide */
        padding: 25px 20px;
    }

    .svc-accent {
        height: 100%;
    }

    .svc-text h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .svc-text p {
        font-size: 15px;
        line-height: 1.5;
    }

    .swiper-slide-active .svc-text p {
        max-height: 240px;     /* was 100px — not enough once text wraps on narrow screens */
        margin-top: 8px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 18px;
    }
}